home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / collections / ItemWrapper.as < prev    next >
Text File  |  2009-02-12  |  385b  |  22 lines

  1. package mx.collections
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class ItemWrapper
  8.    {
  9.       
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.        
  12.       
  13.       public var data:Object;
  14.       
  15.       public function ItemWrapper(param1:Object)
  16.       {
  17.          super();
  18.          this.data = param1;
  19.       }
  20.    }
  21. }
  22.